home *** CD-ROM | disk | FTP | other *** search
- PRINT ""
- PRINT "This file may be run with the command QBASIC /RUN winit.bas"
- PRINT ""
- INPUT "Enter the name of a Windows program: ", prog$
- PRINT ""
- PRINT "If you have enabled AUTOMATIC mode " + prog$ + " will be run."
- PRINT "If you have not, you will get a one line message from " + prog$ + "."
- PRINT ""
- SHELL prog$
- SHELL "pause"
- SYSTEM
-
- REM---------------------------------------------------------------------------
- REM This (toy) program demonstrates how any DOS program can spawn any other
- REM program as long as WinIT! is installed and automatic mode is on.
- REM
- REM To run it type the command:
- REM
- REM QBASIC /RUN WINIT
- REM
- REM---------------------------------------------------------------------------
-
-